The company own what they sell. They have some flexibility in changing price. Their Revenues mostly from profit margin.
Agency Model
More like broker. Revenue from commision and fees.
Some of OTA Company which apply Merchant Model :
- KAI
- AirAsia
- etc
Some of OTA Company which apply Agency Model :
- AirBnB
- Booking.com
- Expedia
- Traveloka
- Tiket.com
Let say there is OTA company , you can name T.LLC
The problem is that :
- The Conversion has dropped 10% from last month
As data scientist we should help business teams to fix the issue
After some analysis for example session replay + interview with product manager they said the customer does not convert when the recommendation show
There are several touchpoint of consumer conversion :
1. Home Feed Recommendation
2. Search Feature
To provide which one to prioritize we should check the data where most of the conversion take place. Via Home Feed Recommendation or Search Feature.
There is distinction between homefeed and search result. People which go to the search bar has already have intent to find hotel. Hypothetically the coversion should be bigger in search.
Model Wise :
Model Performance :
1. Can Beat Baseline Model in terms of NDCG (Previously 0.30)
Model Serving :
1. Max Latency 500ms
- Search Experience is time sensitive
- A company like google already estimated that they apps latency increase by 100ms it affects to their revenue
The first stage is no ML at all. because if we just launch a product / company we dont have enough data, hence we can use simple heuristic such as :
1. Sort by Name
2. Sort by Price
3. Ranking Randomly
The goal is to obtain enough data to collect data to move on to the next step
So in ml based solution it requires data. What type of Information we show. Air BnB in their Article can classify the feature as :
1. Hotels / Listing Feature
2. User / Personalized Features
3. Query Features
Here is the idea :
If we use Hotel Features Only → it can produce ranking but we cannot expect variation in user level. If we compare recommendation of two users. Say A and B the recommendation would be the same.
To add more personalization we can add feature that unique to user level
To what extend its unique, if user characteristics does not change then the recommendation would be the same. However that is not ideal because user intention may be different at different search session
### Debiasing Features
| Variable Name | Data Type | Description | Example | Notes |
|-----------------------------|----------------|-------------------------------------------------------------------------------------------------------------|-----------------------------------------|-------------------------------------------------------------|
| **search_result_rank** | Integer | Listing Rank In Search Result | `1` | |
### Listing / Hotel Features
- It could be feature that describe facility , for example :
- Number of rooms available between dates
- Price
- Location
- etc
- For now there are lot of companies using embeddings to express the feature of an entity
- Usually embeddings are resulted from pretrained model (neural nets for example)
| Variable Name | Data Type | Description | Example | Notes |
|-----------------------------|----------------|-------------------------------------------------------------------------------------------------------------|-----------------------------------------|-------------------------------------------------------------|
| **listing_id** | Integer | Unique identifier for each listing/experience. | 123 | Primary key for listing features. |
| **price** | Float | Price of the listing in USD. | 150.75 | Range typically between 50 and 500. |
| **rating** | Float | Average rating of the listing (scale 1–5). | 4.2 | |
| **num_reviews** | Float | Number of reviews for the listing. | 45.0 | Generated using an exponential distribution. |
| **bookings_last_30_days** | Integer | Number of bookings for the listing in the last 30 days. | 8 | |
| **clicks_30d** | Integer | Number of clicks for the listing in the last 30 days. | 60 | |
| **clicks_7d** | Integer | Number of clicks for the listing in the last 7 days. | 15 | |
| **max_adults** | Integer | Maximum number of adults the listing can accommodate. | 4 | |
| **experience_duration** | Float | Duration of the experience in hours. | 2.5 | |
| **occupancy_rate** | Float | Occupancy rate of the listing (fraction between 0.5 and 1.0). | 0.75 |
### User Personal Features
More Like User Preferences (Could be Implicit or Explicit), Past Bookings(If Available) for examples :
- Past Bookings (1w,1month,3month,etc)
- Average Stay
- etc
Okay, you might say what would happen if user is new ? AirBnB in their paper build separate model for login user and logout user. We could categorize new user as logout user due to the fact that the data is not available enough
| Variable Name | Data Type | Description | Example | Notes |
|-----------------------------|----------------|-------------------------------------------------------------------------------------------------------------|-----------------------------------------|-------------------------------------------------------------|
| **user_id** | Integer | Unique identifier for each user. | 1, 2, 3 | Primary key for user features. |
| **age** | Integer | Age of the user in years. | 25 | |
| **gender** | Integer | Gender of the user (0 for male, 1 for female). | 0 | |
| **user_clicks_30d** | Integer | Number of clicks made by the user in the last 30 days. | 18 | |
| **user_clicks_7d** | Integer | Number of clicks made by the user in the last 7 days. | 5 | |
| **user_booking_30d** | Integer | Number of bookings made by the user in the last 30 days. | 2 | |
| **user_booking_7d** | Integer | Number of bookings made by the user in the last 7 days. | 0 | |
| **user_avg_stay_30d** | Float | Average length of stays (in days) for the user over the last 30 days. | 3.5 | |
| **user_avg_stay_6month** | Float | Average length of stays (in days) for the user over the last 6 months. | 7.2 | |
### Query Features
What does Query Features Mean ? https://medium.com/airbnb-engineering/embedding-based-retrieval-for-airbnb-search-aabebfc85839
Features that describe criteria for hotels we are looking for , for example :
- Number of guests
- Number of Stay
- etc
The same goes with expedia in their article https://medium.com/expedia-group-tech/learning-to-rank-at-expedia-group-how-to-adapt-the-property-search-result-page-based-on-f4ebef78c94b
which include :
- checkin_date
- checkout_date
- We could also represent this as embedding
| Variable Name | Data Type | Description | Example | Notes |
|-----------------------------|----------------|-------------------------------------------------------------------------------------------------------------|-----------------------------------------|-------------------------------------------------------------|
| **query_id** | Integer | Unique identifier for each query. | 42 | Primary key for query features. |
| **checkin_date** | Datetime | Check-in date specified in the query. | 2024-03-15 | |
| **checkout_date** | Datetime | Check-out date specified in the query. | 2024-03-20 | |
| **lead_time** | Integer | Number of days from the query date to the check-in date. | 30 | |
| **duration_of_stay** | Integer | Duration of the stay in days (difference between checkin and checkout dates). | 5 | |
| **number_of_guests** | Integer | Number of guests specified in the query. | 2 | |
### Click Log
Last but not least we need the data from search activity the purpose is to train model to maximize the chance of booking happened.
The search process happen in whats called as **Session**.
- Each User can have multiple session
| Variable Name | Data Type | Description | Example | Notes |
|-----------------------------|----------------|-------------------------------------------------------------------------------------------------------------|-----------------------------------------|-------------------------------------------------------------|
| **session_id** | String | Unique identifier for the session (one session per user-query pair, formatted as "userID_queryID"). | "15_42" | |
| **event_type** | String | Type of event: 'search', 'scroll', 'click', or 'book'. | "click" | |
| **event_time** | Datetime | Timestamp indicating when the event occurred. | 2023-05-10T08:15:00 | |
| **listing_id (in events)** | Integer/Null | For events associated with a listing (scroll, click, book); null for search events. | 123 (or null for search events) |
## Load Data
Calculate Relevance Score
Purpose --> To evaluate how well our search model produce the ordering
The score could be created in a way such that some interaction scored higher.
- `Book` : `2`
- `Click` : `1`
- `Scroll` : `0`
event_type
scroll 50303
click 49697
book 2074
Name: count, dtype: int64
### Adding Search Rank
Next step is to create search ranking feature from recommendation to mitigae positional bias
we will add new column `search_rank` to define ranking result from recommendation.
However we have to sure our data really reflect the ordering from current search system. when outputing search result the rank also should be logged.
The assumption is that :
- In Company `T.LLC` System if we jump from 1st search result to 5th position the rank 1 to 4 regarded as `scroll`
| listing_id | event_time | event_type |search rank |
|-------------:|:--------------------|:-------------|:-------------|
| 3914 | 2022-10-01 17:04:19 | click | 1 |
| 3352 | 2022-10-01 17:04:30 | click |2 |
| 2575 | 2022-10-01 17:04:36 | click |3 |
| 4257 | 2022-10-01 17:04:46 | click |4 |
| 3071 | 2022-10-01 17:05:03 | click |5 |
| 1757 | 2022-10-01 17:05:22 | click |6 |
| 1828 | 2022-10-01 17:05:34 | scroll |7 |
| 3494 | 2022-10-01 17:05:53 | click |8 |
| 2341 | 2022-10-01 17:06:05 | click |9 |
| 438 | 2022-10-01 17:06:11 | scroll |10 |
| 1757 | 2022-10-01 17:06:27 | book |11 |
Next, we need to create those label
# container for concatenating dataset_concat=[]# iterate over session_id forsessionindataset['session_id'].unique():# locate the session session_df=dataset.loc[dataset['session_id']==session]# order by event_time session_df['event_time']=pd.to_datetime(session_df['event_time'])session_df=session_df.sort_values('event_time',ascending=True)# create ranking n_items=session_df.shape[0]session_df['search_result_rank']=[x+1forxinrange(n_items)]dataset_concat.append(session_df)dataset=pd.concat(dataset_concat,axis=0)
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: UserWarning: Could not infer format, so each element will be parsed individually, falling back to `dateutil`. To ensure parsing is consistent and as-expected, please specify a format.
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: UserWarning: Could not infer format, so each element will be parsed individually, falling back to `dateutil`. To ensure parsing is consistent and as-expected, please specify a format.
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: UserWarning: Could not infer format, so each element will be parsed individually, falling back to `dateutil`. To ensure parsing is consistent and as-expected, please specify a format.
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: UserWarning: Could not infer format, so each element will be parsed individually, falling back to `dateutil`. To ensure parsing is consistent and as-expected, please specify a format.
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: UserWarning: Could not infer format, so each element will be parsed individually, falling back to `dateutil`. To ensure parsing is consistent and as-expected, please specify a format.
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: UserWarning: Could not infer format, so each element will be parsed individually, falling back to `dateutil`. To ensure parsing is consistent and as-expected, please specify a format.
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: UserWarning: Could not infer format, so each element will be parsed individually, falling back to `dateutil`. To ensure parsing is consistent and as-expected, please specify a format.
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/273877789.py:10: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
session_df['event_time'] = pd.to_datetime(session_df['event_time'])
dataset
user_id
query_id
session_id
event_type
event_time
listing_id
checkin_date
checkout_date
lead_time
duration_of_stay
...
age
gender
user_clicks_30d
user_clicks_7d
user_booking_30d
user_booking_7d
avg_stay_30d
avg_stay_6month
relevance_score
search_result_rank
0
1
640
1_640
click
2022-09-05 11:30:37
736
2024-05-14 05:35:33
2024-05-28 05:35:33
10
14
...
34
0
19
7
0
0
2.952664
12.881978
1
1
1
1
640
1_640
scroll
2022-09-05 11:30:55
1644
2024-05-14 05:35:33
2024-05-28 05:35:33
10
14
...
34
0
19
7
0
0
2.952664
12.881978
0
2
2
1
640
1_640
scroll
2022-09-05 11:31:08
4963
2024-05-14 05:35:33
2024-05-28 05:35:33
10
14
...
34
0
19
7
0
0
2.952664
12.881978
0
3
3
1
640
1_640
scroll
2022-09-05 11:31:26
1909
2024-05-14 05:35:33
2024-05-28 05:35:33
10
14
...
34
0
19
7
0
0
2.952664
12.881978
0
4
4
1
640
1_640
scroll
2022-09-05 11:31:34
3779
2024-05-14 05:35:33
2024-05-28 05:35:33
10
14
...
34
0
19
7
0
0
2.952664
12.881978
0
5
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
102069
2000
769
2000_769
click
2023-06-01 10:45:46
4726
2024-01-12 17:06:37
2024-01-23 17:06:37
10
11
...
24
1
18
1
1
0
6.620946
10.943592
1
6
102070
2000
769
2000_769
scroll
2023-06-01 10:45:57
663
2024-01-12 17:06:37
2024-01-23 17:06:37
10
11
...
24
1
18
1
1
0
6.620946
10.943592
0
7
102071
2000
769
2000_769
click
2023-06-01 10:46:06
932
2024-01-12 17:06:37
2024-01-23 17:06:37
10
11
...
24
1
18
1
1
0
6.620946
10.943592
1
8
102072
2000
769
2000_769
scroll
2023-06-01 10:46:21
1357
2024-01-12 17:06:37
2024-01-23 17:06:37
10
11
...
24
1
18
1
1
0
6.620946
10.943592
0
9
102073
2000
769
2000_769
scroll
2023-06-01 10:46:31
3602
2024-01-12 17:06:37
2024-01-23 17:06:37
10
11
...
24
1
18
1
1
0
6.620946
10.943592
0
10
102074 rows × 29 columns
## Crafting Training Data
How to construct training pair :
- We need to ensure there is book in a query to make sure the model learn the labels / relevance score
- We need to substract the training pair which does not contain `event_type = book`.
- Why ? Some of the learning models work in query level.
Here is a glimpse of how our data would look like
| query_id | X (features) | y (relevance score) |
|----------|----------------|---------------------|
| | | |
# get query id which contain `event_type==book`book_query_id=dataset.loc[dataset['event_type']=='book','query_id'].unique()book_query_id.sort()print(len(book_query_id))
### Split Data
How to split data ?
It depends on ranking metrics. Our ranking metrics compare relevance score in actual vs predicted (from our model).
to obtain actual ranking , we need to obtain to each query. Hence our split process is quite different from random subsetting where we pick random for example 80% of data.
Our split unit is query id
# Split training data into Train and Test Datatrain_idx=int(0.8*(len(book_query_id)))valid_idx=int(0.9*(len(book_query_id)))query_id_train=book_query_id[:train_idx]query_id_val=book_query_id[train_idx:valid_idx]query_id_test=book_query_id[valid_idx:]
print('Number of Training Query ID',len(query_id_train))print('Number of Validation Query ID',len(query_id_val))print('Number of Test Query ID',len(query_id_test))
Number of Training Query ID 708
Number of Validation Query ID 89
Number of Test Query ID 89
dataset=dataset.sort_values('query_id')
# split X & y X_train_relevance=dataset.loc[dataset['query_id'].isin(query_id_train),ALL_FEATURES]query_train=dataset.loc[dataset['query_id'].isin(query_id_train),'query_id']y_train_relevance=dataset.loc[dataset['query_id'].isin(query_id_train),'relevance_score']X_val_relevance=dataset.loc[dataset['query_id'].isin(query_id_val),ALL_FEATURES]query_val=dataset.loc[dataset['query_id'].isin(query_id_val),'query_id']y_val_relevance=dataset.loc[dataset['query_id'].isin(query_id_val),'relevance_score']X_test_relevance=dataset.loc[dataset['query_id'].isin(query_id_test),ALL_FEATURES]query_test=dataset.loc[dataset['query_id'].isin(query_id_test),'query_id']y_test_relevance=dataset.loc[dataset['query_id'].isin(query_id_test),'relevance_score']
defsplit_data(dataset,train_frac,unique_query_id,feature_columns,query_col,relevance_col):""" Function to split data Returns: _type_: _description_ """# obtain index train_idx=int(train_frac*(len(unique_query_id)))val_pos=(1-train_frac)/2valid_idx=int(val_pos*(len(unique_query_id)))+train_idx# obtain unique query query_id_train=unique_query_id[:train_idx]query_id_val=unique_query_id[train_idx:valid_idx]query_id_test=unique_query_id[valid_idx:]X_train_relevance=dataset.loc[dataset[query_col].isin(query_id_train),feature_columns]query_train=dataset.loc[dataset[query_col].isin(query_id_train),query_col]y_train_relevance=dataset.loc[dataset[query_col].isin(query_id_train),relevance_col]X_val_relevance=dataset.loc[dataset[query_col].isin(query_id_val),feature_columns]query_val=dataset.loc[dataset[query_col].isin(query_id_val),query_col]y_val_relevance=dataset.loc[dataset[query_col].isin(query_id_val),relevance_col]X_test_relevance=dataset.loc[dataset[query_col].isin(query_id_test),feature_columns]query_test=dataset.loc[dataset[query_col].isin(query_id_test),query_col]y_test_relevance=dataset.loc[dataset[query_col].isin(query_id_test),relevance_col]split={'train':(X_train_relevance,y_train_relevance,query_train),'val':(X_val_relevance,y_val_relevance,query_val),'test':(X_test_relevance,y_test_relevance,query_test)}returnsplit
## Training Model
### Pointwise Model
We can train model to predict directly relevance score, but only minimizing error on relevance score prediction. We dont need the query id information since we are not performing swapping.
For example we could use Regression as **LinearRegression** and **RandomForest**
fromsklearn.linear_modelimportLinearRegressionfromsklearn.ensembleimportRandomForestRegressorlr_pointwise=LinearRegression()rf_pointwise=RandomForestRegressor()# train model lr_pointwise.fit(X_train_relevance,y_train_relevance)rf_pointwise.fit(X_train_relevance,y_train_relevance)
RandomForestRegressor()
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook. On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
RandomForestRegressor()
### Pairwise Model
There are lot of model that are used objective to maximize pairwise learning.
for example let say user A has search in e commerce "shiny bag" and it returns 3 items
1. Item A (click)
2. Item B (click)
3. Item C (bought)
the idea is that our model should optimize maximizing pairwise objective Item C > Item A and Item C > B
Some of them model that have pairwise objective :
- RankNet
- LambdaMART (Logistic Loss / RankNet Loss)
#### RankNet
- Training Data Construction :
- Given query result , each item in result has relevance score depends on how user interact (for example book should have bigger relevance score)
-
- Objective :
- $P_{i,j} = P(U_i > U_j) = \cfrac{1}{1 + e^{-\sigma(s_i-s_j)}}$
- Where :
- $P_{i,j} $ : Probability that item i is scored higher than item j
- In plain words we want our model giving higher score to item that are having higher score.
- the $s_i$ comes from model prediction / output :
- $s_i = f(x_i|\theta)$
- s_i - s_j :
- $s_i - s_j = 1 if s_i > s_j$
- $s_i - s_j = 0 if s_i = s_j$
- $s_i - s_j = -1 s_i < s_j$
- To obtain optimal parameter $\theta$ :
- Minimizing negative log likelihood from all training data (Similar to Classification) :
- $$ \mathcal{L} = - \sum_{(i,j) \in \mathcal{P}} \left[
y_{ij}\,\log \left(\frac{1}{1+\exp\left(-\sigma\,(s_i-s_j)\right)}\right)
+ (1-y_{ij})\,\log \left(1 - \frac{1}{1+\exp\left(-\sigma\,(s_i-s_j)\right)}\right)
\right]
$$
- $y_{ij}$ : Pairwise label , 1 if item i > item j
- The objective could be solved through gradient descent
- The goal is to learn relevance scoring function.
#### Lambda Rank
- Why :
- Previous Approach does not directly optimize information retrieval metrics such as : NDCG
- NDCG is not convex function.
- Solution :
- We can optimize the NDCG but with sneaky trick , we can optimize the NDCG by seeing if we switch position between two item (i,j) how the NDCG changes (that similar to gradient).
$\lambda_{i,j} = \Delta NDCG_{\text{swap}_{i,j}}$
- After swapping position we can find which item if we swap the position has the biggest change in NDCG, after swapping each query result combination
now our task is predicting lambda
| query_id | X (features) | y (lambda) |
|----------|----------------|---------------------|
| | | |
#### LambdaMART
- Basically LambdaMART ~ Work the same way as Lambda Rank only that the model in Lambda MART use Decision Tree (Multiple Additive Regression Trees)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook. On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook. On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
### Holdout Set Evaluation
The goal is to check whether model learn or not
There are lot of Ranking / Information Retrieval Metrics. Some of them are :
We can divide into
- Binary Relevance Metrics
- Precision @ K
- Mean Average Precision @ K
- Mean Reciprocal Rank
- Rank Aware Metrics
- Normalized Discounted Cumulative Gain (NDCG)
What is Ideal Ranking Metrics ?
- If we predict correctly the relevance score at top position is better than correctly predicting relevance score in lower position.
\begin{align*}\\
\begin{split}\\
\text{DCG}= \sum_{i=1}^{k} \frac{ 2^{\text{rel}[i]}-1}{\log_{2}([i]+2)} \\
\end{split}\\
\end{align*}\\
Where :
- $\text{DCG}$ = Discounted Cumulative Gain
- $k= \text{number of items in recommendation}$\\
- $\text{rel}[i]$ = relevance score at item in position i th
- Relevance score itself usually relevance score based on ground truth
So where is the NDCG ?
Why do we even need NDCG ? the analogy similar to correlation and covariance matrix. We can measure covariance matrix to asses comovement between two Random Variables. However the value is incomparable hence we need to scale to some finite space such as probability score, ranging from 0 to 1
The Idea of DCG is that position does matter, if our model can predict the highest relevance score at top position is better compared to lower position
In NDCG we can scale the DCG by maximum value of DCG or we call it as **Ideal DCG**
\begin{align*}\\
\begin{split}\\
\text{NDCG}= \frac{\text{DCG}}{\text{Ideal DCG}}\\
\end{split}\\
\end{align*}\\
So what is the ideal DCG in this case ?
There are some flavor, citing Doug TurnBull in His Blogpost ,
- Local Ideal --> Sorted based on ground truth relevance -->
- Global Ideal --> using whole score from judgement list as ground truth , the previous one only use the response from search only
- Max Label --> Considering each position has maximum score, for example in our case the book event type has relevance of 2.
The fact is that if we use Max Label the NDCG Score will decrease, its because the view is pessimistic
for example we will use validation to measure ndcg.
#### Predicting Validation Set
The purpose on this set mainly **selecting model** :
- Selecting best hyperparameter
- Selecting approach
- pipeline etc
We could do through **Cross Validation** which have better estimate of model performance.
In this article we only implement the **Validation Set** approach
We also wont cover **Hyperparameter Tuning** in this article
Next, we should add our model prediction
**Pointwise**
# pointwise score y_val_pred_pointwise=rf_pointwise.predict(X_val_relevance)# save as separate df which contain val_prediction_pointwise=dataset.loc[dataset['query_id'].isin(query_id_val),['listing_id','query_id']]val_prediction_pointwise['y_true']=y_val_relevanceval_prediction_pointwise['pred_lambda']=y_val_pred_pointwise# sort based on query id and pred_lambda val_prediction_pointwise=val_prediction_pointwise.sort_values(['query_id','pred_lambda'],ascending=[True,False])val_prediction_pointwise['rank']=val_prediction_pointwise.groupby('query_id').cumcount()+1val_prediction_pointwise
listing_id
query_id
y_true
pred_lambda
rank
61552
1851
799
1
2.00
1
50329
2614
799
2
2.00
2
53330
941
799
2
1.98
3
97385
772
799
2
1.98
4
88216
1889
799
1
0.64
5
...
...
...
...
...
...
79133
493
898
0
0.39
78
79136
1527
898
0
0.39
79
79140
4943
898
0
0.39
80
81568
3402
898
1
0.38
81
79142
4947
898
1
0.32
82
9274 rows × 5 columns
**Pairwise**
# pairwise score y_val_pred_pairwise=ranker_pairwise.predict(X_val_relevance)# save as separate df which contain val_prediction_pairwise=dataset.loc[dataset['query_id'].isin(query_id_val),['listing_id','query_id']]val_prediction_pairwise['y_true']=y_val_relevanceval_prediction_pairwise['pred_lambda']=y_val_pred_pairwise# sort based on query id and pred_lambda val_prediction_pairwise=val_prediction_pairwise.sort_values(['query_id','pred_lambda'],ascending=[True,False])val_prediction_pairwise['rank']=val_prediction_pairwise.groupby('query_id').cumcount()+1val_prediction_pairwise
listing_id
query_id
y_true
pred_lambda
rank
53330
941
799
2
6.125384
1
61552
1851
799
1
5.817951
2
97385
772
799
2
5.475393
3
50329
2614
799
2
5.136543
4
97381
78
799
1
1.883214
5
...
...
...
...
...
...
74027
1872
898
0
-1.252173
78
81570
4665
898
1
-1.310681
79
48977
23
898
1
-1.320954
80
74020
1840
898
1
-1.559399
81
56431
1963
898
1
-1.979142
82
9274 rows × 5 columns
**Listwise**
# listwise score val_prediction_listwise=dataset.loc[dataset['query_id'].isin(query_id_val),['listing_id','query_id']]y_val_pred_listwise=ranker_listwise.predict(X_val_relevance)val_prediction_listwise['pred_lambda']=y_val_pred_listwiseval_prediction_listwise['y_true']=y_val_relevance# sort based on query id and pred_lambda val_prediction_listwise=val_prediction_listwise.sort_values(['query_id','pred_lambda'],ascending=[True,False])val_prediction_listwise['rank']=val_prediction_listwise.groupby('query_id').cumcount()+1val_prediction_listwise
listing_id
query_id
pred_lambda
y_true
rank
53330
941
799
6.823983
2
1
61552
1851
799
6.143003
1
2
97385
772
799
5.833157
2
3
50329
2614
799
5.567911
2
4
97381
78
799
1.750136
1
5
...
...
...
...
...
...
81568
3402
898
-1.364112
1
78
81566
2386
898
-1.396908
0
79
81570
4665
898
-1.522626
1
80
79142
4947
898
-1.617588
1
81
56432
1267
898
-1.626313
1
82
9274 rows × 5 columns
lets make a function to prepare the prediction on ground truth
defprepare_for_eval(dataset,model,X_test,y_test,query_id):pred_df=dataset.loc[dataset['query_id'].isin(query_id),['listing_id','query_id']]y_pred=model.predict(X_test)pred_df['pred_lambda']=y_predpred_df['y_true']=y_test# sort based on query id and pred_lambda pred_df=pred_df.sort_values(['query_id','pred_lambda'],ascending=[True,False])pred_df['rank']=pred_df.groupby('query_id').cumcount()+1returnpred_df
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/4012253769.py:2: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
sample_dcg['gain'] = 2 ** sample_dcg['y_true'] - 1
/var/folders/zt/dkkszv0n5bd8nq9dywcdj7pc0000gn/T/ipykernel_8103/4012253769.py:4: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
sample_dcg['dcg'] = sample_dcg['gain'] / np.log2(sample_dcg['rank'] + 1)
defcalculate_dcg(prediction_result,target_col,sorting_col,query_col):dcg=prediction_result.copy()# order based on relevance score dcg=dcg.sort_values([query_col,sorting_col],ascending=[True,False])# calculate rankingdcg['rank']=dcg.groupby(query_col).cumcount()+1# calculate gain dcg['gain']=2**dcg[target_col]-1# calculate dcg dcg['dcg']=dcg['gain']/np.log2(dcg['rank']+1)# sum dcg=dcg.groupby(query_col).agg({'dcg':'sum'})returndcg
we usually calculate using Top N Position of ranking, not full item.
defcalculate_dcg_topk(prediction_result,target_col,sorting_col,query_col,k=None):dcg=prediction_result.copy()# order based on relevance score dcg=dcg.sort_values([query_col,sorting_col],ascending=[True,False])# calculate rankingdcg['rank']=dcg.groupby(query_col).cumcount()+1# filter only up to k ifkisnotNone:dcg=dcg.loc[dcg['rank']<=k]# calculate gain dcg['gain']=2**dcg[target_col]-1# calculate dcg dcg['dcg']=dcg['gain']/np.log2(dcg['rank']+1)# sum dcg=dcg.groupby(query_col).agg({'dcg':'sum'})returndcg
We can see that simple approach could beat the complex one. So the best model is **Pointwise** Model
## Ablation Analysis
### Feature Ablation
Brief of Experiment :
- Use Various Setup of Feature to Use :
- Listing Feature only
- User Feature only
- Query Feature only
- Listing + User Feature
- Listing + Query Feature
- User Feature + Query Feature
- Listing + User + Query Feature
- Listing + User + Query Feature + Debiasing